Fix off by one in check for GtkRoundedBox containing a rectangle
authorGustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Thu, 17 Nov 2016 17:15:50 +0000 (15:15 -0200)
committerGustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Mon, 21 Nov 2016 12:53:11 +0000 (10:53 -0200)
When checking if a rectangle is contained by the rounded box, the code
will refuse a rectangle which is the exact size as the one backing the
rounded box, since it checks for greater or equal width and height.
Check for greater only instead.

https://bugzilla.gnome.org/show_bug.cgi?id=774114

gtk/gtkroundedbox.c

index 38443d723638dc1b7e855a61170edd58a927c27f..ea1297f4e03fb9b295bb52323c5f451465921810 100644 (file)
@@ -722,8 +722,8 @@ _gtk_rounded_box_contains_rectangle (const GtkRoundedBox *box,
 {
   if (x1 < box->box.x ||
       y1 < box->box.y ||
-      x2 >= box->box.x + box->box.width ||
-      y2 >= box->box.y + box->box.height)
+      x2 > box->box.x + box->box.width ||
+      y2 > box->box.y + box->box.height)
     return FALSE;
 
   if (x1 < box->box.x + box->corner[GTK_CSS_TOP_LEFT].horizontal &&